behavior.ts 757 B

123456789101112131415161718192021222324252627
  1. /**
  2. * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. */
  6. import { PluginBehavior } from 'mol-plugin/behavior';
  7. import { PluginStateObject } from 'mol-plugin/state/objects';
  8. export class VolumeStreaming extends PluginStateObject.CreateBehavior<VolumeStreaming.Behavior>({ name: 'Volume Streaming' }) { }
  9. export namespace VolumeStreaming {
  10. export interface BehaviorParams {
  11. }
  12. export class Behavior implements PluginBehavior<{}> {
  13. register(ref: string): void {
  14. throw new Error('Method not implemented.');
  15. }
  16. unregister(): void {
  17. throw new Error('Method not implemented.');
  18. }
  19. }
  20. }