export declare const TArraySym: unique symbol; export type TArraySym = typeof TArraySym; export declare const _A: unique symbol; export type _A = typeof _A; /** * @tsplus type effect/core/stm/TArray */ export interface TArray { readonly [TArraySym]: TArraySym; readonly [_A]: () => A; } /** * @tsplus type effect/core/stm/TArray.Ops */ export interface TArrayOps { $: TArrayAspects; } export declare const TArray: TArrayOps; /** * @tsplus type effect/core/stm/TArray.Aspects */ export interface TArrayAspects { } //# sourceMappingURL=definition.d.ts.map