mirror of
https://github.com/orionprotocol/sdk.git
synced 2026-03-14 06:02:36 +03:00
9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
import OrionUnit from './OrionUnit';
|
|
|
|
// backward compatibility
|
|
export default function initOrionUnit(...params: ConstructorParameters<typeof OrionUnit>) {
|
|
return new OrionUnit(
|
|
...params,
|
|
);
|
|
}
|