* Resolves the content scope from sourceConfig, defaulting to `both`.
(value: unknown)
| 44 | * Resolves the content scope from sourceConfig, defaulting to `both`. |
| 45 | */ |
| 46 | function resolveContentScope(value: unknown): ContentScope { |
| 47 | return value === 'structure' ? 'structure' : 'both' |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Represents a Google Drive file entry for a form, returned by the Drive API. |