mirror of
https://github.com/zsviczian/obsidian-excalidraw-plugin.git
synced 2025-08-06 05:46:28 +00:00
20 lines
407 B
TypeScript
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"
|
|
} |