10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
|
export interface Positionable {
|
||
|
x: number;
|
||
|
y: number;
|
||
|
}
|
||
|
|
||
|
export interface HTMLappendIt {
|
||
|
appendIt(svg: SVGElement): void;
|
||
|
}
|
||
|
|
||
|
export const svgNamespace = 'http://www.w3.org/2000/svg';
|