(value: string | undefined)
| 37 | } |
| 38 | |
| 39 | function isBlankText(value: string | undefined): boolean { |
| 40 | return value === undefined || value.trim().length === 0 |
| 41 | } |
| 42 | |
| 43 | export class PointerImporter extends BaseImporter { |
| 44 | platform = 'custom' as const |