(value: PropertyValue)
| 763 | * 判断 PropertyValue 是否为路径引用 |
| 764 | */ |
| 765 | export function isPathReference(value: PropertyValue): value is { path: string } { |
| 766 | return 'path' in value; |
| 767 | } |
| 768 | |
| 769 | /** |
| 770 | * 获取 PropertyValue 的字面值 |
no outgoing calls
no test coverage detected