mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
11 lines
268 B
TypeScript
11 lines
268 B
TypeScript
export * from './src/Contracts';
|
|
import { Edge } from './src/Edge';
|
|
import { safeValue } from './src/Template';
|
|
import { GLOBALS } from './src/Edge/globals';
|
|
/**
|
|
* Default export
|
|
*/
|
|
declare const edge: Edge;
|
|
export default edge;
|
|
export { Edge, safeValue, GLOBALS };
|