/** * Azure-specific naming configuration for the core NamingStrategy. * * The algorithm lives in core; only the data tables and helper functions * for extracting names from Azure resource types are defined here. */ import { NamingStrategy as CoreNamingStrategy } from "@intentius/chant/codegen/naming"; export { propertyTypeName, extractDefName } from "@intentius/chant/codegen/naming"; import type { ArmSchemaParseResult } from "../spec/parse.js"; /** * Azure-specific NamingStrategy — wraps the core algorithm with Azure data tables. */ export declare class NamingStrategy extends CoreNamingStrategy { constructor(results: ArmSchemaParseResult[]); } //# sourceMappingURL=naming.d.ts.map