lines.ts 444 B

12345678910111213
  1. export interface LinePoolItem {
  2. path: string;
  3. style: string;
  4. points: [string, string];
  5. }
  6. export const LINE_LIST = [
  7. { path: 'M0,0 L20,20', style: 'solid', points: ['', ''] },
  8. { path: 'M0,0 L20,20', style: 'dashed', points: ['', ''] },
  9. { path: 'M0,0 L20,20', style: 'solid', points: ['', 'arrow'] },
  10. { path: 'M0,0 L20,20', style: 'dashed', points: ['', 'arrow'] },
  11. { path: 'M0,0 L20,20', style: 'solid', points: ['', 'dot'] },
  12. ]