mina-attestations
Version:
Private Attestations on Mina
14 lines (13 loc) • 458 B
TypeScript
/**
* This file is just a hack to break import cycles
*/
import type { DynamicArray } from './dynamic-array.ts';
import type { DynamicString } from './dynamic-string.ts';
import type { DynamicRecord, GenericRecord } from './dynamic-record.ts';
export { BaseType };
declare const BaseType: {
DynamicArray: typeof DynamicArray;
DynamicString: typeof DynamicString;
DynamicRecord: typeof DynamicRecord;
GenericRecord: typeof GenericRecord;
};