Skip to content

Commit

Permalink
fixed quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
LoaderB0T committed Aug 19, 2024
1 parent d734b71 commit 86735e1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions lib/command/CommandHandler.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { ElementLike } from "../core/Types";
import type { CommandContext } from "./CommandStack";
import type { ElementLike } from '../core/Types';
import type { CommandContext } from './CommandStack';

/**
* A command handler that may be registered via
Expand Down
8 changes: 4 additions & 4 deletions lib/draw/DefaultRenderer.spec.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import Diagram from "../Diagram";
import Diagram from '../Diagram';

import DefaultRenderer from "./DefaultRenderer";
import DefaultRenderer from './DefaultRenderer';

import ElementFactory from "../core/ElementFactory";
import GraphicsFactory from "../core/GraphicsFactory";
import ElementFactory from '../core/ElementFactory';
import GraphicsFactory from '../core/GraphicsFactory';

const diagram = new Diagram();

Expand Down
4 changes: 2 additions & 2 deletions lib/features/context-pad/ContextPadProvider.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Element } from "../../model/Types";
import type { Element } from '../../model/Types';

import type { ContextPadTarget } from "./ContextPad";
import type { ContextPadTarget } from './ContextPad';

export type ContextPadEntryAction<ElementType extends Element = Element> = (
event: Event,
Expand Down
2 changes: 1 addition & 1 deletion lib/features/outline/OutlineProvider.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Element } from "../../model/Types";
import type { Element } from '../../model/Types';

export type Outline = SVGSVGElement | SVGCircleElement | SVGRectElement;

Expand Down
4 changes: 2 additions & 2 deletions lib/features/popup-menu/PopupMenuProvider.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { VNode } from "@bpmn-io/diagram-js-ui";
import type { VNode } from '@bpmn-io/diagram-js-ui';

import type { PopupMenuTarget } from "./PopupMenu";
import type { PopupMenuTarget } from './PopupMenu';

export type PopupMenuEntryAction = (
event: Event,
Expand Down
2 changes: 1 addition & 1 deletion lib/features/search-pad/SearchPadProvider.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Element } from "../../model/Types";
import type { Element } from '../../model/Types';

export type Token = {
matched: string;
Expand Down

0 comments on commit 86735e1

Please sign in to comment.