Files
obsidian-excalidraw-plugin/src/utils/UtilTypes.ts
2024-07-21 17:54:00 +02:00

20 lines
407 B
TypeScript

export type FILENAMEPARTS = {
filepath: string,
hasBlockref: boolean,
hasGroupref: boolean,
hasTaskbone: boolean,
hasArearef: boolean,
hasFrameref: boolean,
hasClippedFrameref: boolean,
hasSectionref: boolean,
blockref: string,
sectionref: string,
linkpartReference: string,
linkpartAlias: string
};
export enum PreviewImageType {
PNG = "PNG",
SVGIMG = "SVGIMG",
SVG = "SVG"
}