type-graphql
Version:
Create GraphQL schema and resolvers with TypeScript, using classes and decorators!
12 lines (11 loc) • 493 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ReflectMetadataMissingError = void 0;
class ReflectMetadataMissingError extends Error {
constructor() {
super("Looks like you've forgot to provide experimental metadata API polyfill. " +
"Please read the installation instruction for more details.");
Object.setPrototypeOf(this, new.target.prototype);
}
}
exports.ReflectMetadataMissingError = ReflectMetadataMissingError;