fix(project): Corrected misalignment in file structure and package metadata.
This commit is contained in:
28
ts_interfaces/index.ts
Normal file
28
ts_interfaces/index.ts
Normal file
@ -0,0 +1,28 @@
|
||||
import * as plugins from '../ts/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[];
|
||||
}
|
Reference in New Issue
Block a user