Type alias AllTypesPropsType

AllTypesPropsType: {
    [x: string]: undefined | `scalar.${string}` | "enum" | {
        [x: string]: undefined | string | {
            [x: string]: string | undefined;
        };
    };
}

Type declaration

  • [x: string]: undefined | `scalar.${string}` | "enum" | {
        [x: string]: undefined | string | {
            [x: string]: string | undefined;
        };
    }