/*! * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import Type from '../types'; declare namespace p { const base: (prop: string, ...nested: (string | number)[]) => Type.Property; const num: (prop: string, ...nested: (string | number)[]) => Type.NumericProperty; const bool: (prop: string, ...nested: (string | number)[]) => Type.BooleanProperty; const str: (prop: string, ...nested: (string | number)[]) => Type.StringProperty; const arr: (prop: string, ...nested: (string | number)[]) => Type.ArrayProperty; const spatial: (prop: string, ...nested: (string | number)[]) => Type.SpatialProperty; const obj: (prop: string, ...nested: (string | number)[]) => Type.ObjectProperty; } export default p; //# sourceMappingURL=property.d.ts.map