mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 01:34:57 +01:00
19 lines
347 B
TypeScript
19 lines
347 B
TypeScript
import { MetadataPublishForm } from '../../../src/@types/MetaData'
|
|
|
|
const testFormData: MetadataPublishForm = {
|
|
author: '',
|
|
files: [],
|
|
license: '',
|
|
dataTokenOptions: {
|
|
name: '',
|
|
symbol: ''
|
|
},
|
|
name: '',
|
|
description: 'description',
|
|
termsAndConditions: true,
|
|
access: 'Download'
|
|
// links: []
|
|
}
|
|
|
|
export default testFormData
|