Skip to main content
Module

x/denote/types.ts

A minimal profile page generator for Deno Deploy
Latest
File
export type CssObject = Record<string, Record<string, unknown>>;
// TODO: use disableFlagsexport type DisableFlag = "rain" | "nav" | "rounded-image";
export type ListGroup = { icon: string; items: ListItem[];};
export type ListItem = { text?: string; icon?: string; link?: string;};
export type ConfigObject = { name: string; disable: DisableFlag[]; description: string; image: string; favicon: string; twitter: string; list: { [key: string]: ListGroup; };};