Browse Source

Fix quotation marks

Nathan Bierema 6 years ago
parent
commit
1e2885f4bc
3 changed files with 3 additions and 3 deletions
  1. 1 1
      src/objects/Line.d.ts
  2. 1 1
      src/objects/LineLoop.d.ts
  3. 1 1
      src/objects/LineSegments.d.ts

+ 1 - 1
src/objects/Line.d.ts

@@ -15,7 +15,7 @@ export class Line extends Object3D {
   geometry: Geometry | BufferGeometry;
   geometry: Geometry | BufferGeometry;
   material: Material | Material[];
   material: Material | Material[];
 
 
-  type: "Line" | "LineLoop" | "LineSegments";
+  type: 'Line' | 'LineLoop' | 'LineSegments';
   isLine: true;
   isLine: true;
 
 
   computeLineDistances(): this;
   computeLineDistances(): this;

+ 1 - 1
src/objects/LineLoop.d.ts

@@ -9,6 +9,6 @@ export class LineLoop extends Line {
     material?: Material | Material[]
     material?: Material | Material[]
   );
   );
 
 
-  type: "LineLoop";
+  type: 'LineLoop';
   isLineLoop: true;
   isLineLoop: true;
 }
 }

+ 1 - 1
src/objects/LineSegments.d.ts

@@ -19,6 +19,6 @@ export class LineSegments extends Line {
     mode?: number
     mode?: number
   );
   );
 
 
-  type: "LineSegments";
+  type: 'LineSegments';
   isLineSegments: true;
   isLineSegments: true;
 }
 }