UNPKG

@itwin/core-backend

Version:
22 lines 604 B
/** @packageDocumentation * @module Schema */ import { Schema } from "./Schema"; /** * The [BisCore]($docs/bis/guide/fundamentals/schemas-domains.md) schema is the lowest level Schema in an iModel. * * It is automatically registered when [[IModelHost.startup]] is called. * * Example: * ``` ts * [[include:BisCore.registerSchemaAndGetClass]] * ``` * @public */ export declare class BisCoreSchema extends Schema { static get schemaName(): string; static get schemaFilePath(): string; /** @internal */ static registerSchema(): void; } //# sourceMappingURL=BisCoreSchema.d.ts.map