satori 0.19.0 → 0.19.2
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.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/standalone.cjs +7 -7
- package/dist/standalone.cjs.map +1 -1
- package/dist/standalone.d.cts +3 -1
- package/dist/standalone.d.ts +3 -1
- package/dist/standalone.js +7 -7
- package/dist/standalone.js.map +1 -1
- package/package.json +2 -3
- package/yoga.wasm +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -133,7 +133,9 @@ interface TwConfig {
|
|
|
133
133
|
}>;
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
-
|
|
136
|
+
type InitInput = RequestInfo | URL | Response | BufferSource | Buffer | WebAssembly.Module;
|
|
137
|
+
|
|
138
|
+
declare function init(input: InitInput): Promise<void>;
|
|
137
139
|
|
|
138
140
|
/**
|
|
139
141
|
* This module is used to calculate the layout of the current sub-tree.
|
package/dist/index.d.ts
CHANGED
|
@@ -133,7 +133,9 @@ interface TwConfig {
|
|
|
133
133
|
}>;
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
-
|
|
136
|
+
type InitInput = RequestInfo | URL | Response | BufferSource | Buffer | WebAssembly.Module;
|
|
137
|
+
|
|
138
|
+
declare function init(input: InitInput): Promise<void>;
|
|
137
139
|
|
|
138
140
|
/**
|
|
139
141
|
* This module is used to calculate the layout of the current sub-tree.
|