@astermind/astermind-synth
Version:
OmegaSynth - Label-Conditioned Synthetic Data Generator for AsterMind ELM/KELM Pipelines
15 lines (14 loc) • 544 B
TypeScript
/**
* Mock for @astermindai/license-runtime
* Used in Jest tests to avoid ESM import issues
*/
export declare const initLicenseRuntime: jest.Mock<any, any, any>;
export declare const setLicenseToken: jest.Mock<any, any, any>;
export declare const requireFeature: jest.Mock<any, any, any>;
export declare const hasFeature: jest.Mock<any, any, any>;
export declare const getLicenseState: jest.Mock<any, any, any>;
export type LicenseState = {
status: 'valid' | 'missing' | 'expired' | 'invalid';
payload?: any;
reason?: string;
};