Skip to content

Commit

Permalink
fix README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nenoNaninu committed Aug 11, 2022
1 parent 9f1df25 commit f36f7c8
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<int>? */
/** Transpiled from System.Collections.Generic.List<int>? */
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);
}
```
Expand Down Expand Up @@ -211,19 +211,19 @@ 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;
}
```
- Space1.Sub.ts
```ts
/** Transpied from Space1.Sub.MyEnum */
/** Transpiled from Space1.Sub.MyEnum */
export enum MyEnum {
Zero = 0,
One = 1,
Expand All @@ -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);
}
```
Expand All @@ -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<Space2.CustomType3> */
/** Transpiled from System.Collections.Generic.List<Space2.CustomType3> */
list: CustomType3[];
}
```
Expand Down

0 comments on commit f36f7c8

Please sign in to comment.