/**
 * @description The type defines the adfix type, which can be either a prefix or a suffix.
 * @export
 */
export type Adfix = 'prefix' | 'suffix';
