libs/core/src/lib/models/resource-object.model.ts
Properties |
query | |
Type |
string
|
Description
|
For the PFE Store use a 'State Key Expression' |
type | |
Type |
StorageType
|
Description
|
Use one of the supported Storage engines. |
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;