@dillonkearns/elm-graphql
Version:
<img src="https://cdn.jsdelivr.net/gh/martimatix/logo-graphqelm/logo.svg" alt="dillonearns/elm-graphql logo" width="40%" align="right">
19 lines (15 loc) • 347 B
JavaScript
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
;
const ModuleDependency = require("./ModuleDependency");
class PrefetchDependency extends ModuleDependency {
constructor(request) {
super(request);
}
get type() {
return "prefetch";
}
}
module.exports = PrefetchDependency;