mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 01:34:57 +01:00
14 lines
272 B
TypeScript
14 lines
272 B
TypeScript
|
import { PublishFormDataInterface } from '../../../src/models/PublishForm'
|
||
|
|
||
|
const testFormData: PublishFormDataInterface = {
|
||
|
author: '',
|
||
|
files: [],
|
||
|
license: '',
|
||
|
price: 0,
|
||
|
title: '',
|
||
|
summary: 'summary',
|
||
|
termsAndConditions: true
|
||
|
}
|
||
|
|
||
|
export default testFormData
|