@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
13 lines (12 loc) • 478 B
TypeScript
import PluggableElementBase from './PluggableElementBase';
import type { AnyConfigurationSchemaType } from '../configuration/types';
import type { IAnyModelType } from 'mobx-state-tree';
export default class InternetAccountType extends PluggableElementBase {
stateModel: IAnyModelType;
configSchema: AnyConfigurationSchemaType;
constructor(stuff: {
name: string;
stateModel: IAnyModelType;
configSchema: AnyConfigurationSchemaType;
});
}