libs/core/src/lib/models/resource-object.model.ts
[key: string]:
|
export interface ResourceObject {
/**
* For the PFE Store use a 'State Key Expression'
*/
query: string;
/**
* Use one of the supported Storage engines.
*/
type: StorageType;
}
/**
* Use one of the supported Storage engines.
*/
export const enum StorageType {
PfeStoreQuery = 'PFE_STORE_QUERY'
}
export interface ResourcesConfiguration {
[key: string]: ResourceObject | StaticResource;
}
export type StaticResource = boolean | number | string | object | unknown[] | null;