mirror of
https://github.com/linkwarden/linkwarden.git
synced 2026-07-01 08:16:26 +00:00
20 lines
473 B
TypeScript
20 lines
473 B
TypeScript
export interface Option {
|
|
label: string;
|
|
value?: string | number;
|
|
__isNew__?: boolean;
|
|
}
|
|
|
|
export interface ArchivalTagOption extends Option {
|
|
archiveAsScreenshot?: boolean | null;
|
|
archiveAsMonolith?: boolean | null;
|
|
archiveAsPDF?: boolean | null;
|
|
archiveAsReadable?: boolean | null;
|
|
archiveAsWaybackMachine?: boolean | null;
|
|
aiTag?: boolean | null;
|
|
}
|
|
|
|
export type ArchivalOptionKeys = keyof Omit<
|
|
ArchivalTagOption,
|
|
"label" | "value" | "__isNew__"
|
|
>;
|