-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL | ||
// This file is automatically generated. DO NOT EDIT | ||
import {base} from '../models'; | ||
import {io} from '../models'; | ||
import {types} from '../models'; | ||
|
||
export function CacheId():Promise<string>; | ||
|
||
export function CacheLocation():Promise<string|string>; | ||
|
||
export function CacheName():Promise<string>; | ||
|
||
export function Date():Promise<string>; | ||
|
||
export function FinishUnmarshal():Promise<void>; | ||
|
||
export function GasCost():Promise<base.Value>; | ||
|
||
export function MarshalCache(arg1:io.Writer):Promise<void>; | ||
|
||
export function Model(arg1:string,arg2:string,arg3:boolean,arg4:{[key: string]: any}):Promise<types.Model>; | ||
|
||
export function String():Promise<string>; | ||
|
||
export function UnmarshalCache(arg1:number,arg2:io.Reader):Promise<void>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// @ts-check | ||
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL | ||
// This file is automatically generated. DO NOT EDIT | ||
|
||
export function CacheId() { | ||
return window['go']['types']['Transaction']['CacheId'](); | ||
} | ||
|
||
export function CacheLocation() { | ||
return window['go']['types']['Transaction']['CacheLocation'](); | ||
} | ||
|
||
export function CacheName() { | ||
return window['go']['types']['Transaction']['CacheName'](); | ||
} | ||
|
||
export function Date() { | ||
return window['go']['types']['Transaction']['Date'](); | ||
} | ||
|
||
export function FinishUnmarshal() { | ||
return window['go']['types']['Transaction']['FinishUnmarshal'](); | ||
} | ||
|
||
export function GasCost() { | ||
return window['go']['types']['Transaction']['GasCost'](); | ||
} | ||
|
||
export function MarshalCache(arg1) { | ||
return window['go']['types']['Transaction']['MarshalCache'](arg1); | ||
} | ||
|
||
export function Model(arg1, arg2, arg3, arg4) { | ||
return window['go']['types']['Transaction']['Model'](arg1, arg2, arg3, arg4); | ||
} | ||
|
||
export function String() { | ||
return window['go']['types']['Transaction']['String'](); | ||
} | ||
|
||
export function UnmarshalCache(arg1, arg2) { | ||
return window['go']['types']['Transaction']['UnmarshalCache'](arg1, arg2); | ||
} |