Typescript generic enum validation guard not returning the type of the enum

I’m having trouble creating a validation guard for enums. The enum guard function I created does fine with checking that the value passed into the function actually exists in the enum object, but I can’t seem to get the return type to be set to the type of the enum.

For reference here are all of my validation guards so you can see what this looks like.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>export const UNDEFINED = (x: unknown): x is undefined => Object.prototype.toString.call(x) === '[object Undefined]';
export const NULL = (x: unknown): x is null => Object.prototype.toString.call(x) === '[object Null]';
export const STRING = (x: unknown): x is string => Object.prototype.toString.call(x) === '[object String]'
export const NUMBER = (x: unknown): x is number => Object.prototype.toString.call(x) === '[object Number]'
export const BOOLEAN = (x: unknown): x is boolean => Object.prototype.toString.call(x) === '[object Boolean]'
export type Guard<T> = (x: unknown) => x is T;
export type Guarded<T extends Guard<unknown>> = T extends Guard<infer V> ? V : never;
export const OBJECT =
<T extends object>(propGuardObj: { [K in keyof T]: Guard<T[K]> }) =>
(x: any): x is T =>
Object.prototype.toString.call(x) === '[object Object]' &&
(Object.keys(propGuardObj) as Array<keyof T>).every(k => (k in x) && propGuardObj[k](x[k]));
export const ARRAY =
<T>(elemGuard: Guard<T>) =>
(x: unknown): x is Array<T> =>
Array.isArray(x) &&
x.every(el => elemGuard(el));
export const OR =
<T1, T2>(guard1: Guard<T1>, guard2: Guard<T2>) =>
(x: unknown): x is T1 | T2 =>
guard1(x) || guard2(x);
export const AND =
<T1, T2>(guard1: Guard<T1>, guard2: Guard<T2>) =>
(x: unknown): x is T1 & T2 =>
guard1(x) && guard2(x);
// There's a problem with the 'ENUM' type guard
export const ENUM =
<T extends object>(e: T) =>
(x: unknown): x is T =>
(Object.keys(e) as Array<keyof T>)
.filter(n => isNaN(Number(n)))
.some(k => e[k] === x)
</code>
<code>export const UNDEFINED = (x: unknown): x is undefined => Object.prototype.toString.call(x) === '[object Undefined]'; export const NULL = (x: unknown): x is null => Object.prototype.toString.call(x) === '[object Null]'; export const STRING = (x: unknown): x is string => Object.prototype.toString.call(x) === '[object String]' export const NUMBER = (x: unknown): x is number => Object.prototype.toString.call(x) === '[object Number]' export const BOOLEAN = (x: unknown): x is boolean => Object.prototype.toString.call(x) === '[object Boolean]' export type Guard<T> = (x: unknown) => x is T; export type Guarded<T extends Guard<unknown>> = T extends Guard<infer V> ? V : never; export const OBJECT = <T extends object>(propGuardObj: { [K in keyof T]: Guard<T[K]> }) => (x: any): x is T => Object.prototype.toString.call(x) === '[object Object]' && (Object.keys(propGuardObj) as Array<keyof T>).every(k => (k in x) && propGuardObj[k](x[k])); export const ARRAY = <T>(elemGuard: Guard<T>) => (x: unknown): x is Array<T> => Array.isArray(x) && x.every(el => elemGuard(el)); export const OR = <T1, T2>(guard1: Guard<T1>, guard2: Guard<T2>) => (x: unknown): x is T1 | T2 => guard1(x) || guard2(x); export const AND = <T1, T2>(guard1: Guard<T1>, guard2: Guard<T2>) => (x: unknown): x is T1 & T2 => guard1(x) && guard2(x); // There's a problem with the 'ENUM' type guard export const ENUM = <T extends object>(e: T) => (x: unknown): x is T => (Object.keys(e) as Array<keyof T>) .filter(n => isNaN(Number(n))) .some(k => e[k] === x) </code>
export const UNDEFINED = (x: unknown): x is undefined => Object.prototype.toString.call(x) === '[object Undefined]';
export const NULL = (x: unknown): x is null => Object.prototype.toString.call(x) === '[object Null]';
export const STRING = (x: unknown): x is string => Object.prototype.toString.call(x) === '[object String]'
export const NUMBER = (x: unknown): x is number => Object.prototype.toString.call(x) === '[object Number]'
export const BOOLEAN = (x: unknown): x is boolean => Object.prototype.toString.call(x) === '[object Boolean]'

export type Guard<T> = (x: unknown) => x is T;
export type Guarded<T extends Guard<unknown>> = T extends Guard<infer V> ? V : never;

export const OBJECT =
    <T extends object>(propGuardObj: { [K in keyof T]: Guard<T[K]> }) =>
        (x: any): x is T =>
            Object.prototype.toString.call(x) === '[object Object]' &&
            (Object.keys(propGuardObj) as Array<keyof T>).every(k => (k in x) && propGuardObj[k](x[k]));
export const ARRAY =
    <T>(elemGuard: Guard<T>) =>
        (x: unknown): x is Array<T> =>
            Array.isArray(x) &&
            x.every(el => elemGuard(el));
export const OR =
    <T1, T2>(guard1: Guard<T1>, guard2: Guard<T2>) =>
        (x: unknown): x is T1 | T2 =>
            guard1(x) || guard2(x);
export const AND =
    <T1, T2>(guard1: Guard<T1>, guard2: Guard<T2>) =>
        (x: unknown): x is T1 & T2 =>
            guard1(x) && guard2(x);

// There's a problem with the 'ENUM' type guard
export const ENUM = 
    <T extends object>(e: T) => 
        (x: unknown): x is T =>
            (Object.keys(e) as Array<keyof T>)
                .filter(n => isNaN(Number(n)))
                .some(k => e[k] === x)

All of the other validation guards work as intended, namely they check the value supplied and if the function returns true then the values type is set correctly. However with the ENUM guard rather than the values type being set to just simply T the type gets set to typeof T

Here’s an example of what’s happening.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>enum MyStringEnum { a = 'a', b = 'b', c = 'c' }
let val: any = 'a'
if (ENUM(MyStringEnum)(val)) {
// I get a compile error [Type 'typeof MyStringEnum' is not assignable to type 'MyStringEnum']
// I'm expecting that after the validation guard the 'val' variable will have a type of 'MyStringEnum'
let val2: MyStringEnum = val
}
</code>
<code>enum MyStringEnum { a = 'a', b = 'b', c = 'c' } let val: any = 'a' if (ENUM(MyStringEnum)(val)) { // I get a compile error [Type 'typeof MyStringEnum' is not assignable to type 'MyStringEnum'] // I'm expecting that after the validation guard the 'val' variable will have a type of 'MyStringEnum' let val2: MyStringEnum = val } </code>
enum MyStringEnum { a = 'a', b = 'b', c = 'c' }

let val: any = 'a'

if (ENUM(MyStringEnum)(val)) {
    // I get a compile error [Type 'typeof MyStringEnum' is not assignable to type 'MyStringEnum']
    // I'm expecting that after the validation guard the 'val' variable will have a type of 'MyStringEnum'
    let val2: MyStringEnum = val
}

Any help is appreciated.

Update

If I try to create the enum validation guard without generics then I can get it to work by writing it like this, but I’d like for the enum validation guard to be generic for T rather than specific to MyStringEnum:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>export const ENUM2 =
(e: typeof MyStringEnum) => // had to write "typeof MyStringEnum" here
(x: unknown): x is MyStringEnum =>
(Object.keys(e) as Array<keyof typeof MyStringEnum>) // had to write "typeof MyStringEnum" here
.filter(n => isNaN(Number(n)))
.some(k => e[k] === x)
</code>
<code>export const ENUM2 = (e: typeof MyStringEnum) => // had to write "typeof MyStringEnum" here (x: unknown): x is MyStringEnum => (Object.keys(e) as Array<keyof typeof MyStringEnum>) // had to write "typeof MyStringEnum" here .filter(n => isNaN(Number(n))) .some(k => e[k] === x) </code>
export const ENUM2 = 
    (e: typeof MyStringEnum) =>                                  // had to write "typeof MyStringEnum" here
        (x: unknown): x is MyStringEnum =>
            (Object.keys(e) as Array<keyof typeof MyStringEnum>) // had to write "typeof MyStringEnum" here
                .filter(n => isNaN(Number(n)))
                .some(k => e[k] === x)

Updated answer:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>export const ENUM = <T>(e: Record<string, T>) =>
(x: unknown): x is T =>
Object.keys(e).some(k => isNaN(Number(k)) && e[k] === x)
</code>
<code>export const ENUM = <T>(e: Record<string, T>) => (x: unknown): x is T => Object.keys(e).some(k => isNaN(Number(k)) && e[k] === x) </code>
export const ENUM = <T>(e: Record<string, T>) => 
    (x: unknown): x is T => 
        Object.keys(e).some(k => isNaN(Number(k)) && e[k] === x)

Old answer

It can possibly be cleaned up and generalized, but you could try something like this.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>export const ENUM =
<T extends Record<string, string>>(e: T) =>
(x: unknown): x is T[keyof T] =>
(Object.keys(e) as Array<keyof T>)
.filter(n => isNaN(Number(n)))
.some(k => e[k] === x)
</code>
<code>export const ENUM = <T extends Record<string, string>>(e: T) => (x: unknown): x is T[keyof T] => (Object.keys(e) as Array<keyof T>) .filter(n => isNaN(Number(n))) .some(k => e[k] === x) </code>
export const ENUM = 
    <T extends Record<string, string>>(e: T) => 
        (x: unknown): x is T[keyof T] =>
            (Object.keys(e) as Array<keyof T>)
                .filter(n => isNaN(Number(n)))
                .some(k => e[k] === x)

3

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Typescript generic enum validation guard not returning the type of the enum

I’m having trouble creating a validation guard for enums. The enum guard function I created does fine with checking that the value passed into the function actually exists in the enum object, but I can’t seem to get the return type to be set to the type of the enum.

For reference here are all of my validation guards so you can see what this looks like.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>export const UNDEFINED = (x: unknown): x is undefined => Object.prototype.toString.call(x) === '[object Undefined]';
export const NULL = (x: unknown): x is null => Object.prototype.toString.call(x) === '[object Null]';
export const STRING = (x: unknown): x is string => Object.prototype.toString.call(x) === '[object String]'
export const NUMBER = (x: unknown): x is number => Object.prototype.toString.call(x) === '[object Number]'
export const BOOLEAN = (x: unknown): x is boolean => Object.prototype.toString.call(x) === '[object Boolean]'
export type Guard<T> = (x: unknown) => x is T;
export type Guarded<T extends Guard<unknown>> = T extends Guard<infer V> ? V : never;
export const OBJECT =
<T extends object>(propGuardObj: { [K in keyof T]: Guard<T[K]> }) =>
(x: any): x is T =>
Object.prototype.toString.call(x) === '[object Object]' &&
(Object.keys(propGuardObj) as Array<keyof T>).every(k => (k in x) && propGuardObj[k](x[k]));
export const ARRAY =
<T>(elemGuard: Guard<T>) =>
(x: unknown): x is Array<T> =>
Array.isArray(x) &&
x.every(el => elemGuard(el));
export const OR =
<T1, T2>(guard1: Guard<T1>, guard2: Guard<T2>) =>
(x: unknown): x is T1 | T2 =>
guard1(x) || guard2(x);
export const AND =
<T1, T2>(guard1: Guard<T1>, guard2: Guard<T2>) =>
(x: unknown): x is T1 & T2 =>
guard1(x) && guard2(x);
// There's a problem with the 'ENUM' type guard
export const ENUM =
<T extends object>(e: T) =>
(x: unknown): x is T =>
(Object.keys(e) as Array<keyof T>)
.filter(n => isNaN(Number(n)))
.some(k => e[k] === x)
</code>
<code>export const UNDEFINED = (x: unknown): x is undefined => Object.prototype.toString.call(x) === '[object Undefined]'; export const NULL = (x: unknown): x is null => Object.prototype.toString.call(x) === '[object Null]'; export const STRING = (x: unknown): x is string => Object.prototype.toString.call(x) === '[object String]' export const NUMBER = (x: unknown): x is number => Object.prototype.toString.call(x) === '[object Number]' export const BOOLEAN = (x: unknown): x is boolean => Object.prototype.toString.call(x) === '[object Boolean]' export type Guard<T> = (x: unknown) => x is T; export type Guarded<T extends Guard<unknown>> = T extends Guard<infer V> ? V : never; export const OBJECT = <T extends object>(propGuardObj: { [K in keyof T]: Guard<T[K]> }) => (x: any): x is T => Object.prototype.toString.call(x) === '[object Object]' && (Object.keys(propGuardObj) as Array<keyof T>).every(k => (k in x) && propGuardObj[k](x[k])); export const ARRAY = <T>(elemGuard: Guard<T>) => (x: unknown): x is Array<T> => Array.isArray(x) && x.every(el => elemGuard(el)); export const OR = <T1, T2>(guard1: Guard<T1>, guard2: Guard<T2>) => (x: unknown): x is T1 | T2 => guard1(x) || guard2(x); export const AND = <T1, T2>(guard1: Guard<T1>, guard2: Guard<T2>) => (x: unknown): x is T1 & T2 => guard1(x) && guard2(x); // There's a problem with the 'ENUM' type guard export const ENUM = <T extends object>(e: T) => (x: unknown): x is T => (Object.keys(e) as Array<keyof T>) .filter(n => isNaN(Number(n))) .some(k => e[k] === x) </code>
export const UNDEFINED = (x: unknown): x is undefined => Object.prototype.toString.call(x) === '[object Undefined]';
export const NULL = (x: unknown): x is null => Object.prototype.toString.call(x) === '[object Null]';
export const STRING = (x: unknown): x is string => Object.prototype.toString.call(x) === '[object String]'
export const NUMBER = (x: unknown): x is number => Object.prototype.toString.call(x) === '[object Number]'
export const BOOLEAN = (x: unknown): x is boolean => Object.prototype.toString.call(x) === '[object Boolean]'

export type Guard<T> = (x: unknown) => x is T;
export type Guarded<T extends Guard<unknown>> = T extends Guard<infer V> ? V : never;

export const OBJECT =
    <T extends object>(propGuardObj: { [K in keyof T]: Guard<T[K]> }) =>
        (x: any): x is T =>
            Object.prototype.toString.call(x) === '[object Object]' &&
            (Object.keys(propGuardObj) as Array<keyof T>).every(k => (k in x) && propGuardObj[k](x[k]));
export const ARRAY =
    <T>(elemGuard: Guard<T>) =>
        (x: unknown): x is Array<T> =>
            Array.isArray(x) &&
            x.every(el => elemGuard(el));
export const OR =
    <T1, T2>(guard1: Guard<T1>, guard2: Guard<T2>) =>
        (x: unknown): x is T1 | T2 =>
            guard1(x) || guard2(x);
export const AND =
    <T1, T2>(guard1: Guard<T1>, guard2: Guard<T2>) =>
        (x: unknown): x is T1 & T2 =>
            guard1(x) && guard2(x);

// There's a problem with the 'ENUM' type guard
export const ENUM = 
    <T extends object>(e: T) => 
        (x: unknown): x is T =>
            (Object.keys(e) as Array<keyof T>)
                .filter(n => isNaN(Number(n)))
                .some(k => e[k] === x)

All of the other validation guards work as intended, namely they check the value supplied and if the function returns true then the values type is set correctly. However with the ENUM guard rather than the values type being set to just simply T the type gets set to typeof T

Here’s an example of what’s happening.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>enum MyStringEnum { a = 'a', b = 'b', c = 'c' }
let val: any = 'a'
if (ENUM(MyStringEnum)(val)) {
// I get a compile error [Type 'typeof MyStringEnum' is not assignable to type 'MyStringEnum']
// I'm expecting that after the validation guard the 'val' variable will have a type of 'MyStringEnum'
let val2: MyStringEnum = val
}
</code>
<code>enum MyStringEnum { a = 'a', b = 'b', c = 'c' } let val: any = 'a' if (ENUM(MyStringEnum)(val)) { // I get a compile error [Type 'typeof MyStringEnum' is not assignable to type 'MyStringEnum'] // I'm expecting that after the validation guard the 'val' variable will have a type of 'MyStringEnum' let val2: MyStringEnum = val } </code>
enum MyStringEnum { a = 'a', b = 'b', c = 'c' }

let val: any = 'a'

if (ENUM(MyStringEnum)(val)) {
    // I get a compile error [Type 'typeof MyStringEnum' is not assignable to type 'MyStringEnum']
    // I'm expecting that after the validation guard the 'val' variable will have a type of 'MyStringEnum'
    let val2: MyStringEnum = val
}

Any help is appreciated.

Update

If I try to create the enum validation guard without generics then I can get it to work by writing it like this, but I’d like for the enum validation guard to be generic for T rather than specific to MyStringEnum:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>export const ENUM2 =
(e: typeof MyStringEnum) => // had to write "typeof MyStringEnum" here
(x: unknown): x is MyStringEnum =>
(Object.keys(e) as Array<keyof typeof MyStringEnum>) // had to write "typeof MyStringEnum" here
.filter(n => isNaN(Number(n)))
.some(k => e[k] === x)
</code>
<code>export const ENUM2 = (e: typeof MyStringEnum) => // had to write "typeof MyStringEnum" here (x: unknown): x is MyStringEnum => (Object.keys(e) as Array<keyof typeof MyStringEnum>) // had to write "typeof MyStringEnum" here .filter(n => isNaN(Number(n))) .some(k => e[k] === x) </code>
export const ENUM2 = 
    (e: typeof MyStringEnum) =>                                  // had to write "typeof MyStringEnum" here
        (x: unknown): x is MyStringEnum =>
            (Object.keys(e) as Array<keyof typeof MyStringEnum>) // had to write "typeof MyStringEnum" here
                .filter(n => isNaN(Number(n)))
                .some(k => e[k] === x)

Updated answer:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>export const ENUM = <T>(e: Record<string, T>) =>
(x: unknown): x is T =>
Object.keys(e).some(k => isNaN(Number(k)) && e[k] === x)
</code>
<code>export const ENUM = <T>(e: Record<string, T>) => (x: unknown): x is T => Object.keys(e).some(k => isNaN(Number(k)) && e[k] === x) </code>
export const ENUM = <T>(e: Record<string, T>) => 
    (x: unknown): x is T => 
        Object.keys(e).some(k => isNaN(Number(k)) && e[k] === x)

Old answer

It can possibly be cleaned up and generalized, but you could try something like this.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>export const ENUM =
<T extends Record<string, string>>(e: T) =>
(x: unknown): x is T[keyof T] =>
(Object.keys(e) as Array<keyof T>)
.filter(n => isNaN(Number(n)))
.some(k => e[k] === x)
</code>
<code>export const ENUM = <T extends Record<string, string>>(e: T) => (x: unknown): x is T[keyof T] => (Object.keys(e) as Array<keyof T>) .filter(n => isNaN(Number(n))) .some(k => e[k] === x) </code>
export const ENUM = 
    <T extends Record<string, string>>(e: T) => 
        (x: unknown): x is T[keyof T] =>
            (Object.keys(e) as Array<keyof T>)
                .filter(n => isNaN(Number(n)))
                .some(k => e[k] === x)

3

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật