broaden the union type of CellParserResult by adding number

This commit is contained in:
Marc Satkowski 2025-04-09 19:43:05 +02:00
parent e611b557aa
commit bb2596a462

View file

@ -11,7 +11,7 @@ export interface Result {
onRunCallback?: OnRunCallback
}
export type CellParserResult = Result | string | HTMLElement
export type CellParserResult = Result | string | HTMLElement | number
export class ModernCellParser {