mirror of
https://github.com/rabirabirara/obsidian-jelly-snippets.git
synced 2026-07-22 07:30:22 +00:00
13 lines
173 B
TypeScript
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;
|
|
};
|