update ts-rs to 8.1

This commit is contained in:
Aiden McClelland
2024-03-26 10:26:44 -06:00
parent 9cf720e040
commit 4589d4b3f5
42 changed files with 67 additions and 43 deletions

View File

@@ -2,4 +2,4 @@
import type { AddressInfo } from "./AddressInfo";
import type { ServiceInterfaceType } from "./ServiceInterfaceType";
export interface ExportServiceInterfaceParams { id: string, name: string, description: string, hasPrimary: boolean, disabled: boolean, masked: boolean, addressInfo: AddressInfo, type: ServiceInterfaceType, }
export type ExportServiceInterfaceParams = { id: string, name: string, description: string, hasPrimary: boolean, disabled: boolean, masked: boolean, addressInfo: AddressInfo, type: ServiceInterfaceType, };