tryGetArray<T, S = IStorage>( storage: undefined | null | IStorage, key: string, opt?: { checkValue?: (value: unknown) => boolean; cloneContainer?: boolean; itemFactory?: (storage: S, i: number) => T; omitTypedJsonListOptions?: boolean; },): undefined| null| T[] Parameters
- storage: undefined | null | IStorage
- key: string
Optional
opt: {
checkValue?: (value: unknown) => boolean;
cloneContainer?: boolean;
itemFactory?: (storage: S, i: number) => T;
omitTypedJsonListOptions?: boolean;
}
Returns undefined | null | T[]