rabirabirara_obsidian-jelly.../snippet.ts
Spencer Gouw b769bf70be refac: properly acknowledge __MR snippet type info
Does not fix interaction with auto trigger by enter yet.
2023-09-22 02:44:57 -05:00

13 lines
173 B
TypeScript

export type LHS = string;
export interface RHS {
data: string;
info: {
hasNewline: boolean;
cursorEnd: number;
};
}
export type Snippet = {
lhs: LHS;
rhs: RHS;
};