/** * This describes a strong reference to any data type. */ export type StrongRef = { /** * The value of the strong reference. */ value: T; }; /** * Create a strong reference to the given value. * @param value - the value to wrap in a strong reference * @returns the strong reference containing the value */ export declare function CreateStrongRef(value: T): StrongRef; //# sourceMappingURL=strongRef.d.ts.map