/** * Array type emission * * All array types emit as native CLR arrays (T[]). * List is only used when explicitly requested via new List(). */ import { IrType } from "@tsonic/frontend"; import { EmitterContext } from "../types.js"; import type { CSharpTypeAst } from "../core/format/backend-ast/types.js"; /** * Emit array types as CSharpTypeAst (arrayType nodes) */ export declare const emitArrayType: (type: Extract, context: EmitterContext) => [CSharpTypeAst, EmitterContext]; //# sourceMappingURL=arrays.d.ts.map