File

projects/dvk/src/lib/dynamic-components/dynamic-component-data/dynamic-component-data.model.ts

Description

Represent the data necessary for a dynamic component that is suitable for serialization.

This part of the model is separate so that it could be put inside a store or some other use case where serialization matters.

Index

Properties

Properties

initialValues
initialValues: InitialValues<T>
Type : InitialValues<T>
Optional
name
name: string
Type : string
import { InitialValues } from "../initial-values/initial-values.model";

/**
 * Represent the data necessary for a dynamic 
 * component that is suitable for serialization.
 * 
 * This part of the model is separate so that it
 * could be put inside a store or some other 
 * use case where serialization matters.
 */
export interface DynamicComponentData<T> {
    name: string;
    initialValues?: InitialValues<T>;
}

results matching ""

    No results matching ""