refactor: alias WorkerExtension to TempalteUiExtension

This commit is contained in:
Huakun Shen 2025-02-02 11:12:58 -05:00
parent 798cc773e5
commit e260264797
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
{
"$schema": "https://jsr.io/schema/config-file.v1.json",
"name": "@kunkun/api",
"version": "0.0.55",
"version": "0.0.57",
"license": "MIT",
"exports": {
".": "./src/index.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@kksh/api",
"version": "0.0.56",
"version": "0.0.57",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",

View File

@ -58,7 +58,7 @@ export interface IUiWorker {
}
// export { expose, wrap } from "@huakunshen/comlink"
export { WorkerExtension } from "./ext"
export { WorkerExtension, WorkerExtension as TemplateUiExtension } from "./ext"
/**
* For the APIs annotated with "inherit from tauri-api-adapter", they inherit the client API completely from tauri-api-adapter
* There may be server API changes for them, but the client API can be inherited

View File

@ -21,7 +21,7 @@ export const breakingChangesVersionCheckpoints = [
const checkpointVersions = breakingChangesVersionCheckpoints.map((c) => c.version)
const sortedCheckpointVersions = sort(checkpointVersions)
export const version = "0.0.56"
export const version = "0.0.57"
export function isVersionBetween(v: string, start: string, end: string) {
const vCleaned = clean(v)