estilo
Version:
Create color schemes for Vim, NeoVim, Airline and Lightline
10 lines • 329 B
TypeScript
import type { Eta } from "./core.js";
export type TagType = "r" | "e" | "i" | "";
export interface TemplateObject {
t: TagType;
val: string;
lineNo?: number;
}
export type AstObject = string | TemplateObject;
export declare function parse(this: Eta, str: string): Array<AstObject>;
//# sourceMappingURL=parse.d.ts.map