This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "dependencies": { | |
| "@jaebradley/fruit": "^1.0.20", | |
| "@nrwl/cli": "^9.4.1", | |
| "@persper/js-callgraph": "^1.3.2", | |
| "@storybook/cli": "^5.3.17", | |
| "@typescript-eslint/eslint-plugin": "^2.13.0", | |
| "cloc": "^2.5.1", | |
| "commitizen": "^4.0.3", | |
| "conventional-changelog-cli": "^2.0.23", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| declare module 'svelte-routing' { | |
| import { SvelteComponent, SvelteComponentTyped } from 'svelte'; | |
| interface LinkProps { | |
| to: string; | |
| replace?: boolean; | |
| state?: { | |
| [k in string | number]: unknown; | |
| }; | |
| getProps?: (linkParams: GetPropsParams) => Record<string, any>; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="grid g"></div> | |
| <div class=""></div> | |
| <style> | |
| body { | |
| background: #6592CF; | |
| } | |
| .grid { | |
| position: absolute; | |
| top: 0px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var { graphql, GraphQLSchema, GraphQLString, GraphQLObjectType, GraphQLNonNull, GraphQLList } = require('graphql'); | |
| // root query | |
| const RootQuery = new GraphQLObjectType({ | |
| name: 'RootQuery', | |
| fields: () => QueryFields, | |
| }); | |
| const QueryFields = {}; |
OlderNewer