fix(core): update
This commit is contained in:
8
ts/00_commitinfo_data.ts
Normal file
8
ts/00_commitinfo_data.ts
Normal file
@ -0,0 +1,8 @@
|
||||
/**
|
||||
* autocreated commitinfo by @pushrocks/commitinfo
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@signature.digital/portablecontract',
|
||||
version: '1.0.2',
|
||||
description: 'a package that defines standard tools for working with contracts.'
|
||||
}
|
3
ts/index.ts
Normal file
3
ts/index.ts
Normal file
@ -0,0 +1,3 @@
|
||||
import * as plugins from './portablecontract.plugins.js';
|
||||
|
||||
export let demoExport = 'Hi there! :) This is an exported string';
|
28
ts/interfaces/index.ts
Normal file
28
ts/interfaces/index.ts
Normal file
@ -0,0 +1,28 @@
|
||||
import * as plugins from '../portablecontract.plugins.js';
|
||||
|
||||
export interface IParagraph {
|
||||
uniqueId: string;
|
||||
parent: IParagraph | null;
|
||||
title: string;
|
||||
content: string;
|
||||
}
|
||||
|
||||
export interface IRole {
|
||||
id: string;
|
||||
name: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
export interface IInvolvedParty {
|
||||
role: string;
|
||||
contact: plugins.tsclass.business.IContact;
|
||||
}
|
||||
|
||||
export interface IPortableContract {
|
||||
title: string;
|
||||
context: string;
|
||||
availableRoles: IRole[];
|
||||
involvedParties: IInvolvedParty[];
|
||||
priorContracts: IPortableContract[];
|
||||
paragraphs: IParagraph[];
|
||||
}
|
5
ts/portablecontract.plugins.ts
Normal file
5
ts/portablecontract.plugins.ts
Normal file
@ -0,0 +1,5 @@
|
||||
import * as tsclass from '@tsclass/tsclass';
|
||||
|
||||
export {
|
||||
tsclass
|
||||
}
|
Reference in New Issue
Block a user