summaryrefslogtreecommitdiffstats
path: root/llparse-frontend/src/implementation/full.ts
diff options
context:
space:
mode:
Diffstat (limited to 'llparse-frontend/src/implementation/full.ts')
-rw-r--r--llparse-frontend/src/implementation/full.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/llparse-frontend/src/implementation/full.ts b/llparse-frontend/src/implementation/full.ts
new file mode 100644
index 0000000..08c4c03
--- /dev/null
+++ b/llparse-frontend/src/implementation/full.ts
@@ -0,0 +1,9 @@
+import { ICodeImplementation } from './code';
+import { INodeImplementation } from './node';
+import { ITransformImplementation } from './transform';
+
+export interface IImplementation {
+ readonly code: ICodeImplementation;
+ readonly node: INodeImplementation;
+ readonly transform: ITransformImplementation;
+}