mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-02 03:14:31 +08:00
* Create index.d.ts * Create tsconfig.json * Update index.d.ts * add graphql-iso-date types * fix tests * add strict function types
12 lines
456 B
TypeScript
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;
|