import { IConstantSourceOptions } from '../interfaces'; import { TNativeConstantSourceNode } from './native-constant-source-node'; import { TNativeContext } from './native-context'; export type TNativeConstantSourceNodeFactory = ( nativeContext: TNativeContext, options: IConstantSourceOptions ) => TNativeConstantSourceNode;