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