mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 17:54:53 +01:00
16 lines
317 B
TypeScript
16 lines
317 B
TypeScript
import { PublishFormDataInterface } from '../../../src/models/PublishForm'
|
|
|
|
const testFormData: PublishFormDataInterface = {
|
|
author: '',
|
|
files: [],
|
|
license: '',
|
|
price: 0,
|
|
title: '',
|
|
granularity: 'hourly',
|
|
category: 'test',
|
|
summary: 'summary',
|
|
termsAndConditions: true
|
|
}
|
|
|
|
export default testFormData
|