UNPKG

go-blank-npm

Version:

13 lines (11 loc) 302 B
export interface IWebsite { _id: string; url: string; status: "inactive" | "active"; description: string; createdAt: Date; updatedAt: Date; __v: number; } export declare const initWebsiteBlanker: () => Promise<void>; export declare const cleanupWebsiteBlanker: () => void;