Files
obsidian-excalidraw-plugin/src/types/utilTypes.ts
zsviczian b0bc03437a
Some checks are pending
CodeQL / Analyze (javascript) (push) Waiting to run
2.8.0-rc-1, 0.17.6-28
2025-01-24 17:11:28 +01:00

27 lines
525 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"
}
export interface FrameRenderingOptions {
enabled: boolean;
name: boolean;
outline: boolean;
clip: boolean;
}