@effindomv2/fui-as 0.1.5 → 0.1.6
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/package.json
CHANGED
|
@@ -217,6 +217,7 @@ function emitBindingsFile(
|
|
|
217
217
|
): string {
|
|
218
218
|
const callbackImport = primitivesImportOverride ?? relativeImport(outputPath, path.resolve(PACKAGE_DIR, "src/FuiPrimitives.ts"));
|
|
219
219
|
const blocks: Array<string> = [
|
|
220
|
+
"// @ts-nocheck",
|
|
220
221
|
`// Generated by scripts/generate-host-events.ts from ${sourcePathForHeader(sourceModulePath)}#${exportName}.`,
|
|
221
222
|
`import { Callback0, Callback1, Callback2 } from "${callbackImport}";`,
|
|
222
223
|
"",
|
|
@@ -199,6 +199,7 @@ function emitBindingsFile(
|
|
|
199
199
|
): string {
|
|
200
200
|
const runtimeImport = primitivesImportOverride ?? relativeImport(outputPath, path.resolve(PACKAGE_DIR, "src/FuiPrimitives.ts"));
|
|
201
201
|
const blocks: Array<string> = [
|
|
202
|
+
"// @ts-nocheck",
|
|
202
203
|
`// Generated by scripts/generate-host-services.ts from ${sourcePathForHeader(sourceModulePath)}#${exportName}.`,
|
|
203
204
|
];
|
|
204
205
|
if (methods.some((method) => returnsBufferType(method.returns))) {
|