feat: update `Sheet` type

This commit is contained in:
bluelovers 2022-06-07 08:35:42 +08:00 committed by GitHub
parent 4cc0412154
commit a364125f76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

1
types/index.d.ts vendored
View File

@ -518,6 +518,7 @@ export interface Sheet {
* Special keys start with '!'
*/
[cell: string]: CellObject | SheetKeys | any;
[cell: `${string}${number}`]: CellObject;
/** Sheet type */
'!type'?: SheetType;