UNPKG

earl-lang

Version:

Earl Bahasa Pemrograman Alur Kerja

11 lines (10 loc) 231 B
export interface Context { index: number; lines: string[]; [key: string]: any; } export type PearlModule = ( tokens: string[], modules: Record<string, PearlModule>, context: Context ) => void | Promise<void>;