Cuu.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
308 B

  1. export type Item = {
  2. url: string;
  3. reactions?: string[];
  4. };
  5. export declare const save: (userId: string, item: Item) => Promise<void>;
  6. export declare const load: (userId: string, count?: number) => Promise<Item[]>;
  7. export declare const remove: (userId: string, count?: number) => Promise<void>;