Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

4 lines
258 B
TypeScript

declare function sliceUntilModern(text: string, endIndex: number): string;
/** Creates a slice of {@link text} from the start until the {@link endIndex}th grapheme (basically character). */
export declare const sliceUntil: typeof sliceUntilModern;
export {};