Specify type for Object.freeze
parent
b7b45d2eab
commit
4c6db866c1
|
@ -10,7 +10,9 @@
|
|||
* デフォルト値の仕様は以下のマニュアルに基づく<br>
|
||||
* https://docs.live2d.com/cubism-editor-manual/standard-parametor-list/
|
||||
*/
|
||||
export const CubismDefaultParameterId = Object.freeze({
|
||||
export const CubismDefaultParameterId = Object.freeze<{
|
||||
[key: string]: string;
|
||||
}>({
|
||||
// パーツID
|
||||
HitAreaPrefix: 'HitArea',
|
||||
HitAreaHead: 'Head',
|
||||
|
|
|
@ -54,7 +54,7 @@ let s_cubismIdManager: CubismIdManager = null;
|
|||
/**
|
||||
* Framework内で使う定数の宣言
|
||||
*/
|
||||
export const Constant = Object.freeze({
|
||||
export const Constant = Object.freeze<{ [key: string]: number }>({
|
||||
vertexOffset: 0, // メッシュ頂点のオフセット値
|
||||
vertexStep: 2 // メッシュ頂点のステップ値
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue