UNPKG

@nativewrappers/fivem

Version:

Native wrappers and utilities for use with FiveM.

9 lines (8 loc) 370 B
import type { ScreenEffect } from "../enums/ScreenEffect"; export declare abstract class Effects { static start(effectName: ScreenEffect, duration?: number, looped?: boolean): void; static stop(screenEffect?: ScreenEffect): void; static isActive(screenEffect: ScreenEffect): boolean; private static readonly effects; private static effectToString; }