import { define } from "../scripts/class-definitions"; export default [ define({ name: "FileSystemRouter", construct: true, finalize: true, JSType: "0b11101110", configurable: false, proto: { match: { fn: "match", length: 1, }, routes: { getter: "getRoutes", cache: true, }, reload: { fn: "reload", length: 0, }, origin: { getter: "getOrigin", cache: true, }, style: { getter: "getStyle", cache: true, }, }, klass: {}, }), define({ name: "MatchedRoute", noConstructor: true, JSType: "0b11101110", construct: true, finalize: true, proto: { params: { getter: "getParams", cache: true, }, pathname: { getter: "getPathname", cache: true, }, query: { getter: "getQuery", cache: true, }, name: { getter: "getName", cache: true, }, kind: { getter: "getKind", cache: true, }, filePath: { getter: "getFilePath", cache: true, }, // this is for compatibiltiy with bun-framework-next old versions scriptSrc: { getter: "getScriptSrc", cache: true, }, src: { getter: "getScriptSrc", cache: "scriptSrc", }, }, klass: {}, }), ]; ption> Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/integration/snippets/styledcomponents-output.js (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-06-22Update index.d.tsGravatar Jarred Sumner 1-0/+1
2022-06-22types for `bun:jsc`Gravatar Jarred Sumner 2-1/+37
2022-06-22Slightly customize the `events` polyfill so it uses ESMGravatar Jarred Sumner 1-1/+522
2022-06-22Fix memory bugs in escapeHTML & arrayBufferToStringGravatar Jarred Sumner 1-65/+61