@scaffoldly/rowdy 0.0.2-1-beta.20251008133520.50f4675 → 0.0.2-1-beta.20251008220906.148abdf
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -0
- package/dist/index.js +83 -62
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -45,6 +45,9 @@ type Health = {
|
|
|
45
45
|
declare class Routes implements IRoutes, ILoggable {
|
|
46
46
|
readonly version: RoutesApiVersion;
|
|
47
47
|
readonly rules: Array<RouteRule>;
|
|
48
|
+
private constructor();
|
|
49
|
+
static empty(): Routes;
|
|
50
|
+
static default(): Routes;
|
|
48
51
|
static fromURL(url: string): Routes;
|
|
49
52
|
static fromPath(path: string): Routes;
|
|
50
53
|
static fromDataURL(dataUrl: string): Routes;
|