File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,18 @@ export const FormattingPatterns = {
93
93
* The `timestamp` and `style` group properties are present on the `exec` result of this expression
94
94
*/
95
95
StyledTimestamp : / < t : (?< timestamp > - ? \d { 1 , 13 } ) : (?< style > [ D F R T d f t ] ) > / ,
96
+ /**
97
+ * Regular expression for matching a guild navigation mention
98
+ *
99
+ * The `type` group property is present on the `exec` result of this expression
100
+ */
101
+ GuildNavigation : / < i d : (?< type > c u s t o m i z e | b r o w s e | g u i d e | l i n k e d - r o l e s ) > / ,
102
+ /**
103
+ * Regular expression for matching a linked role mention
104
+ *
105
+ * The `id` group property is present on the `exec` result of this expression
106
+ */
107
+ LinkedRole : / < i d : l i n k e d - r o l e s : (?< id > \d { 17 , 20 } ) > / ,
96
108
} as const ;
97
109
98
110
/**
Original file line number Diff line number Diff line change @@ -93,6 +93,18 @@ export const FormattingPatterns = {
93
93
* The `timestamp` and `style` group properties are present on the `exec` result of this expression
94
94
*/
95
95
StyledTimestamp : / < t : (?< timestamp > - ? \d { 1 , 13 } ) : (?< style > [ D F R T d f t ] ) > / ,
96
+ /**
97
+ * Regular expression for matching a guild navigation mention
98
+ *
99
+ * The `type` group property is present on the `exec` result of this expression
100
+ */
101
+ GuildNavigation : / < i d : (?< type > c u s t o m i z e | b r o w s e | g u i d e | l i n k e d - r o l e s ) > / ,
102
+ /**
103
+ * Regular expression for matching a linked role mention
104
+ *
105
+ * The `id` group property is present on the `exec` result of this expression
106
+ */
107
+ LinkedRole : / < i d : l i n k e d - r o l e s : (?< id > \d { 17 , 20 } ) > / ,
96
108
} as const ;
97
109
98
110
/**
You can’t perform that action at this time.
0 commit comments