chore(web): fix indentation in type files

This commit is contained in:
RedCMD 2025-07-14 22:50:04 +12:00 committed by GitHub
parent 42e2bba8d6
commit 912167a9cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 114 additions and 114 deletions

View file

@ -83,8 +83,8 @@ export const ZERO_POINT: Point = { row: 0, column: 0 };
export type ParseCallback = (index: number, position: Point) => string | undefined;
/**
* A callback that receives the parse state during parsing.
*/
* A callback that receives the parse state during parsing.
*/
export type ProgressCallback = (progress: ParseState) => boolean;
/**