@kevisual/router 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -188,14 +188,6 @@ type RouteOpts<U = {}, T = SimpleObject$1> = {
188
188
  metadata?: T;
189
189
  middleware?: RouteMiddleware[];
190
190
  type?: 'route' | 'middleware' | 'compound';
191
- /**
192
- * $#$ will be used to split path and key
193
- */
194
- idUsePath?: boolean;
195
- /**
196
- * id 合并的分隔符,默认为 $#$
197
- */
198
- delimiter?: string;
199
191
  isDebug?: boolean;
200
192
  };
201
193
  type DefineRouteOpts = Omit<RouteOpts, 'idUsePath' | 'nextRoute'>;