zod#TypeOf TypeScript Examples

The following examples show how to use zod#TypeOf. 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: types.test.ts    From backstage with Apache License 2.0 6 votes vote down vote up
describe('types', () => {
  const responseData: ProxiedSession = {
    providerInfo: {
      stuff: 1,
    },
    profile: {
      email: 'e',
      displayName: 'd',
      picture: 'p',
    },
    backstageIdentity: {
      token: 't',
      identity: {
        type: 'user',
        userEntityRef: 'k:ns/ue',
        ownershipEntityRefs: ['k:ns/oe'],
      },
    },
  };

  it('has a compatible schema type', () => {
    function f(_b: TypeOf<typeof proxiedSessionSchema>) {}
    f(responseData); // no tsc errors
    expect(proxiedSessionSchema.parse(responseData)).toEqual(responseData);
  });
});