Type Alias ObjectHelperFunctions

type ObjectHelperFunctions = {
    getListData<ItemType>(listDef: ListBoxProperties): Promise<ItemType[]>;
    getListObject<ItemType>(
        listDef: ListBoxProperties,
    ): Promise<GenericListObject<ItemType>>;
    getOrCreateSessionObject<
        GenericObjectCustomType extends
            GenericObject<AnyGenericObjectProperties, AnyGenericObjectLayout> = GenericObject<
            AnyGenericObjectProperties,
            AnyGenericObjectLayout,
        >,
    >(
        props: ListBoxProperties,
    ): Promise<GenericObjectCustomType>;
}
Index

Methods