import type { BoundaryModel } from './boundary-model.interface'; export type AnyBoundary = BoundaryModel; export type BoundaryName = Boundary extends BoundaryModel ? `${Type}:${Title}` : 'Boundary:Uknown'; export type BoundaryType = Boundary extends BoundaryModel ? Type : 'Boundary:Uknown Type'; export type BoundaryTitle = Boundary extends BoundaryModel ? Title : 'Boundary:Unknown Title';