mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
import Asset from "./Asset";
|
|
|
|
export default class Order {
|
|
public id: string;
|
|
public asset: Asset;
|
|
public assetId: string;
|
|
public timeout: any;
|
|
public pubkey: string;
|
|
public key: any;
|
|
}
|