@mikezimm/fps-core-v7
Version:
Library of reusable core interfaces, types and constants migrated from fps-library-v2
24 lines • 771 B
TypeScript
/**
* 2024-09-09: Migrated from v2/src/logic/molecules/Performance
*/
import { DisplayMode } from '../../../types/@msft/1.15.2/displayMode';
import { ILoadPerformanceOps, IPerformanceOp } from './IPerformance';
/**
* Add this to ISource Props and performance will automatically be added to the return object
*/
export interface IPerformanceSettings extends IStartPerformOp {
updateMiliseconds: boolean;
op?: ILoadPerformanceOps;
}
export interface IStartPerformOp {
label: string;
note?: string;
editMode?: DisplayMode | null;
includeMsStr?: boolean;
}
export interface IEndPerformOp {
op: IPerformanceOp;
updateMiliseconds: boolean;
count: number | null;
}
//# sourceMappingURL=IPerformanceSettings.d.ts.map