/** * Unsafe feature detection (pointers) * * Used to decide when to emit `unsafe` modifiers in generated C#. */ import type { IrExpression, IrStatement, IrType, IrModule } from "@tsonic/frontend"; export declare const typeUsesPointer: (type: IrType | undefined) => boolean; export declare const expressionUsesPointer: (expr: IrExpression | undefined) => boolean; export declare const statementUsesPointer: (stmt: IrStatement) => boolean; export declare const moduleUsesPointer: (module: IrModule) => boolean; //# sourceMappingURL=unsafe.d.ts.map