@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
13 lines (12 loc) • 387 B
TypeScript
import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models/Guid";
/**
* Base interface for LinkType
* @id need to implement
* @description To use this, create a class that implements this interface, with constructor to initialize it with a static GUID value
*/
export interface LinkType {
/**
* GUID of interface
*/
id: GuidValue;
}