Type alias JSONType<T, IsPartial>

JSONType<T, IsPartial>: IsPartial extends true
    ? T | undefined
    : T

Type Parameters

  • T extends string
  • IsPartial extends boolean