mirror of
https://github.com/xfarrow/blink
synced 2025-06-06 00:49:11 +02:00
5 lines
131 B
TypeScript
5 lines
131 B
TypeScript
|
|
export function parse(source: string): string[];
|
|
export function parse<T>(source: string, transform: (value: string) => T): T[];
|
|
|