Variable coerceConst

coerce: {
    cryptographic: ((args?) => PodspecCryptographic);
    eddsaPubKey: ((args?) => PodspecEdDSAPubKey);
    int: ((args?) => PodspecInt);
    string: ((args?) => PodspecString);
} = ...

Creation functions for Podspec values with coercion enabled.

Type declaration

  • cryptographic: ((args?) => PodspecCryptographic)
      • (args?): PodspecCryptographic
      • Parameters

        • Optional args: CreateArgs<CryptographicCheck>

        Returns PodspecCryptographic

  • eddsaPubKey: ((args?) => PodspecEdDSAPubKey)
      • (args?): PodspecEdDSAPubKey
      • Parameters

        • Optional args: CreateArgs<EdDSAPubKeyCheck>

        Returns PodspecEdDSAPubKey

  • int: ((args?) => PodspecInt)
      • (args?): PodspecInt
      • Parameters

        • Optional args: CreateArgs<IntCheck>

        Returns PodspecInt

  • string: ((args?) => PodspecString)
      • (args?): PodspecString
      • Parameters

        • Optional args: CreateArgs<StringCheck>

        Returns PodspecString

Generated using TypeDoc