4 lines
110 B
TypeScript
4 lines
110 B
TypeScript
type StringIterator<R> = (char: string, index: number, string: string) => R;
|
|
|
|
export type { StringIterator };
|