Interface CustomStateSet
interface CustomStateSet {
forEach(
callbackfn: (
value: string,
key: string,
parent: CustomStateSet,
) => void,
thisArg?: any,
): void;
}
forEach(
callbackfn: (
value: string,
key: string,
parent: CustomStateSet,
) => void,
thisArg?: any,
): void;
}
Index
Methods
Methods
forEach
- forEach(
callbackfn: (value: string, key: string, parent: CustomStateSet) => void,
thisArg?: any,
): void Parameters
- callbackfn: (value: string, key: string, parent: CustomStateSet) => void
Optional
thisArg: any
Returns void