chore(common/models): removes empty comments

This commit is contained in:
Joshua Horton 2020-08-12 08:18:43 +07:00 committed by GitHub
parent daa15ea914
commit 5d03399f23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -127,8 +127,6 @@ type LMLayerWorkerState = LMLayerWorkerUnconfiguredState | LMLayerWorkerModelles
* Represents the unconfigured state of the LMLayer.
*/
interface LMLayerWorkerUnconfiguredState {
/**
*/
name: 'unconfigured';
handleMessage(payload: IncomingMessage): void;
}
@ -137,8 +135,6 @@ interface LMLayerWorkerUnconfiguredState {
* Represents the pre-model-load state of the LMLayer.
*/
interface LMLayerWorkerModellessState {
/**
*/
name: 'modelless';
handleMessage(payload: IncomingMessage): void;
}
@ -147,8 +143,6 @@ interface LMLayerWorkerModellessState {
* Represents the 'ready' state of the LMLayer.
*/
interface LMLayerWorkerReadyState {
/**
*/
name: 'ready';
handleMessage(payload: IncomingMessage): void;
compositor: ModelCompositor;