From f36f7c811a916fb7cee7c51e24d49f0f27aa5080 Mon Sep 17 00:00:00 2001 From: nenoNaninu Date: Fri, 12 Aug 2022 00:03:23 +0900 Subject: [PATCH] fix README.md --- README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 96cb2ee..39a5f06 100644 --- a/README.md +++ b/README.md @@ -77,15 +77,15 @@ The contents of the generated code is as follows. ```ts /* eslint-disable */ -/** Transpied from SampleNamespace.SampleType */ +/** Transpiled from SampleNamespace.SampleType */ export type SampleType = { - /** Transpied from System.Collections.Generic.List? */ + /** Transpiled from System.Collections.Generic.List? */ list?: number[]; - /** Transpied from int */ + /** Transpiled from int */ value: number; - /** Transpied from System.Guid */ + /** Transpiled from System.Guid */ id: string; - /** Transpied from System.DateTime */ + /** Transpiled from System.DateTime */ dateTime: (Date | string); } ``` @@ -211,11 +211,11 @@ The following TypeScript code is generated. - Space1.ts ```ts -/** Transpied from Space1.CustomType1 */ +/** Transpiled from Space1.CustomType1 */ export type CustomType1 = { - /** Transpied from int */ + /** Transpiled from int */ value: number; - /** Transpied from System.Guid */ + /** Transpiled from System.Guid */ id: string; } ``` @@ -223,7 +223,7 @@ export type CustomType1 = { - Space1.Sub.ts ```ts -/** Transpied from Space1.Sub.MyEnum */ +/** Transpiled from Space1.Sub.MyEnum */ export enum MyEnum { Zero = 0, One = 1, @@ -235,11 +235,11 @@ export enum MyEnum { - Space2.ts ```ts -/** Transpied from Space2.CustomType3 */ +/** Transpiled from Space2.CustomType3 */ export type CustomType3 = { - /** Transpied from float */ + /** Transpiled from float */ value: number; - /** Transpied from System.DateTime */ + /** Transpiled from System.DateTime */ name: (Date | string); } ``` @@ -251,13 +251,13 @@ import { CustomType1 } from './Space1'; import { MyEnum } from './Space1.Sub'; import { CustomType3 } from './Space2'; -/** Transpied from Space3.NastingNamespaceType */ +/** Transpiled from Space3.NastingNamespaceType */ export type NastingNamespaceType = { - /** Transpied from Space1.CustomType1? */ + /** Transpiled from Space1.CustomType1? */ value?: CustomType1; - /** Transpied from Space1.Sub.MyEnum */ + /** Transpiled from Space1.Sub.MyEnum */ myEnumValue: MyEnum; - /** Transpied from System.Collections.Generic.List */ + /** Transpiled from System.Collections.Generic.List */ list: CustomType3[]; } ```