libs/core/src/lib/taly-placeholder-bb/taly-placeholder-bb.model.ts
Properties |
|
expectedState (Optional) | |
Type |
State
|
purpose (Optional) | |
Type |
string
|
title (Optional) | |
Type |
string
|
import { RecordObjectLike } from '../building-block/abstract-building-block';
export interface PlaceHolderResources<State extends RecordObjectLike = Record<string, unknown>> {
expectedState?: State;
title?: string;
purpose?: string;
}
export type PlaceholderComponentState = Record<string, unknown>;