Interface CustomStateSet

    interface CustomStateSet {
        forEach(
            callbackfn: (
                value: string,
                key: string,
                parent: CustomStateSet,
            ) => void,
            thisArg?: any,
        ): void;
    }

    Methods

    Methods

    • Parameters

      • callbackfn: (value: string, key: string, parent: CustomStateSet) => void
      • OptionalthisArg: any

      Returns void