(schema: IPublicTypeNodeSchema)
| 54 | * @returns boolean |
| 55 | */ |
| 56 | export function isFileSchema(schema: IPublicTypeNodeSchema): schema is IPublicTypeRootSchema { |
| 57 | if (!isSchema(schema)) { |
| 58 | return false; |
| 59 | } |
| 60 | return ['Page', 'Block', 'Component'].includes(schema.componentName); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * check if current page is nested within another page with same host |
no test coverage detected
searching dependent graphs…