mediasfu-angular
Version:
mediasfu-angular - Angular 17/18/19 WebRTC SDK for video conferencing, webinars, broadcasts, live streaming, chat, recording, whiteboard, and AI agents. Prebuilt rooms and fully custom UIs.
34 lines (33 loc) • 1.56 kB
TypeScript
import * as i0 from "@angular/core";
export interface ValidateAlphanumericOptions {
str: string;
}
export type ValidateAlphanumericType = (options: ValidateAlphanumericOptions) => Promise<boolean>;
/**
* Service to validate if a given string contains only alphanumeric characters.
*
* @class ValidateAlphanumeric
*
* @example
* ```typescript
* const validator = new ValidateAlphanumeric();
* validator.validateAlphanumeric({ str: 'abc123' }).then(isValid => console.log(isValid)); // true
* validator.validateAlphanumeric({ str: 'abc 123!' }).then(isValid => console.log(isValid)); // false
* ```
*
* @param {ValidateAlphanumericOptions} options - Contains the string to validate.
* @param {string} options.str - The input string that needs to be validated.
* @returns {Promise<boolean>} - A promise resolving to `true` if the input string is alphanumeric, otherwise `false`.
*/
export declare class ValidateAlphanumeric {
/**
* Validates if the given string contains only alphanumeric characters.
*
* @param {ValidateAlphanumericOptions} options - The options containing the string to validate.
* @param {string} options.str - The string to be validated.
* @returns {Promise<boolean>} - A promise that resolves to `true` if the string is alphanumeric, otherwise `false`.
*/
validateAlphanumeric({ str }: ValidateAlphanumericOptions): Promise<boolean>;
static ɵfac: i0.ɵɵFactoryDeclaration<ValidateAlphanumeric, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<ValidateAlphanumeric>;
}