oberknecht-utils
Version:
Utils for oberknecht packages
13 lines (12 loc) • 562 B
TypeScript
import { secondCase } from "./stringModifiers/secondCase";
import { reverse } from "./stringModifiers/reverse";
import { reverseWords } from "./stringModifiers/reverseWords";
import { reverseInWords } from "./stringModifiers/reverseInWords";
import { toFancyText } from "./stringModifiers/toFancyText";
export declare class stringModifiers {
static secondCase: typeof secondCase;
static reverse: typeof reverse;
static reverseWords: typeof reverseWords;
static reverseInWords: typeof reverseInWords;
static toFancyText: typeof toFancyText;
}