type-fest#JsonArray TypeScript Examples

The following examples show how to use type-fest#JsonArray. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: block.service.spec.ts    From amplication with Apache License 2.0 5 votes vote down vote up
EXAMPLE_BLOCK_INPUT_LIST: JsonArray & BlockInputOutput[] = [
  EXAMPLE_BLOCK_INPUT
]
Example #2
Source File: BlockCreateInput.ts    From amplication with Apache License 2.0 5 votes vote down vote up
@Field(() => [BlockInputOutput], {
    nullable: true,
    description: undefined
  })
  inputParameters?: BlockInputOutput[] & JsonArray;
Example #3
Source File: BlockCreateInput.ts    From amplication with Apache License 2.0 5 votes vote down vote up
@Field(() => [BlockInputOutput], {
    nullable: true,
    description: undefined
  })
  outputParameters?: BlockInputOutput[] & JsonArray;