mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-28 17:35:49 +08:00
Make TextGeometryParameters options optional.
This commit is contained in:
16
three/index.d.ts
vendored
16
three/index.d.ts
vendored
@@ -1,6 +1,6 @@
|
||||
// Type definitions for three.js 0.83
|
||||
// Project: http://mrdoob.github.com/three.js/
|
||||
// Definitions by: Kon <http://phyzkit.net/>, Satoru Kimura <https://github.com/gyohk>, Florent Poujol <https://github.com/florentpoujol>, SereznoKot <https://github.com/SereznoKot>, HouChunlei <https://github.com/omni360>
|
||||
// Definitions by: Kon <http://phyzkit.net/>, Satoru Kimura <https://github.com/gyohk>, Florent Poujol <https://github.com/florentpoujol>, SereznoKot <https://github.com/SereznoKot>, HouChunlei <https://github.com/omni360>, Ivo <https://github.com/ivoisbelongtous>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
/// <reference path="detector.d.ts" />
|
||||
@@ -6415,13 +6415,13 @@ declare namespace THREE {
|
||||
}
|
||||
|
||||
export interface TextGeometryParameters {
|
||||
font: Font;
|
||||
size: number;
|
||||
height: number;
|
||||
curveSegments: number;
|
||||
bevelEnabled: boolean;
|
||||
bevelThickness: number;
|
||||
bevelSize: number;
|
||||
font?: Font;
|
||||
size?: number;
|
||||
height?: number;
|
||||
curveSegments?: number;
|
||||
bevelEnabled?: boolean;
|
||||
bevelThickness?: number;
|
||||
bevelSize?: number;
|
||||
}
|
||||
|
||||
export class TextGeometry extends ExtrudeGeometry {
|
||||
|
||||
Reference in New Issue
Block a user