@adoratorio/apollo
Version:
A JS library for custom cursor
18 lines • 569 B
TypeScript
import Apollo from "../..";
import { ApolloPlugin } from "../../declarations";
import { CSSRenderOptions } from "./declarations";
declare class CSSRender implements ApolloPlugin {
private context;
private options;
private cursorBounding;
name: string;
constructor(options: Partial<CSSRenderOptions>);
register(context: Apollo): void;
frame(): void;
startRender(): void;
stopRender(): void;
get cursorElement(): Element | null;
get boundings(): Partial<DOMRect>;
}
export default CSSRender;
//# sourceMappingURL=index.d.ts.map