4 lines
231 B
TypeScript
4 lines
231 B
TypeScript
import { Twt } from './types.ts';
|
|
export type HashableTwt = Pick<Twt, "content" | "created" | "url"> & Partial<Omit<Twt, "content" | "created" | "url">>;
|
|
export default function hashTwt(twt: HashableTwt, version?: number): string;
|