Files
DefinitelyTyped/types/graphql-iso-date/index.d.ts
Jason Waldrip 56e3995300 Add typings for graphql-iso-date (#23202)
* Create index.d.ts

* Create tsconfig.json

* Update index.d.ts

* add graphql-iso-date types

* fix tests

* add strict function types
2018-01-26 09:03:21 -08:00

12 lines
456 B
TypeScript

// Type definitions for graphql-iso-date 3.3
// Project: https://github.com/excitement-engineer/graphql-iso-date
// Definitions by: Jason Waldrip <https://github.com/jwaldrip>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
import { GraphQLScalarType } from "graphql";
export const GraphQLDate: GraphQLScalarType;
export const GraphQLTime: GraphQLScalarType;
export const GraphQLDateTime: GraphQLScalarType;