API / geotoolkit / decorators
Functions
Functions
▸ Implements(superClass): (klass: ClassType) => void
Decorator to implements interface
| Name | Type | Description |
|---|---|---|
superClass | ClassType<any> | super class |
fn
▸ (klass): void
| Name | Type |
|---|---|
klass | ClassType |
void
▸ Obfuscate(): (klass: ClassType) => void
Decorator to obfuscate class. Note that it should be run the last - after @SetClassName and @Implements, so write it on the top of decorators list
fn
▸ (klass): void
| Name | Type |
|---|---|
klass | ClassType |
void
▸ SetClassName(className): (klass: ClassType) => void
Decorator to set class name.
| Name | Type | Description |
|---|---|---|
className | string | class name |
fn
▸ (klass): void
| Name | Type |
|---|---|
klass | ClassType |
void