import { JavaClass } from "java-bridge"; import { Double as java_lang_Double } from "./../../lang/Double"; /** * This class just defines types, you should import DoubleToLongFunction instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class DoubleToLongFunctionClass extends JavaClass { /** * @param var0 original type: 'double' * @return original return type: 'long' */ applyAsLong(var0: java_lang_Double | number): Promise; /** * @param var0 original type: 'double' * @return original return type: 'long' */ applyAsLongSync(var0: java_lang_Double | number): number; } declare const DoubleToLongFunction_base: typeof DoubleToLongFunctionClass; /** * Class java.util.function.DoubleToLongFunction. * * This actually imports the java class for further use. * The class DoubleToLongFunctionClass only defines types, this is the class you should actually import. * Please note that this statement imports the underlying java class at runtime, which may take a while. * This was generated by java-bridge. * You should probably not edit this. */ export declare class DoubleToLongFunction extends DoubleToLongFunction_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default DoubleToLongFunction; //# sourceMappingURL=DoubleToLongFunction.d.ts.map