mirror of
https://github.com/apple/pkl.git
synced 2026-08-28 14:37:18 +02:00
Correctly type check Class<T> (#1698)
This commit is contained in:
+1
-1
@@ -361,7 +361,7 @@ abstract class BaseValueRenderer {
|
||||
///
|
||||
/// See [ConvertProperty] for detailed information.
|
||||
@Since { version = "0.31.0" }
|
||||
convertPropertyTransformers: Mapping<Class, Mixin<ConvertProperty>>
|
||||
convertPropertyTransformers: Mapping<Class<ConvertProperty>, Mixin<ConvertProperty>>
|
||||
|
||||
/// The file extension associated with this output format,
|
||||
/// or [null] if this format does not have an extension.
|
||||
|
||||
+2
-2
@@ -26,8 +26,8 @@
|
||||
/// 3. `~/.config/pkl/settings.pkl`
|
||||
/// 4. Path `pkl/settings.pkl` within the `$XDG_CONFIG_DIRS` search path
|
||||
/// (dirs separated by `:` on Unix, `;` on Windows).
|
||||
/// 4. `/etc/xdg/pkl/settings.pkl`
|
||||
/// 5. `~/.pkl/settings.pkl` (legacy location used by Pkl 0.32 and lower)
|
||||
/// 5. `/etc/xdg/pkl/settings.pkl`
|
||||
/// 6. `~/.pkl/settings.pkl` (legacy location used by Pkl 0.32 and lower)
|
||||
@ModuleInfo { minPklVersion = "0.33.0" }
|
||||
module pkl.settings
|
||||
|
||||
|
||||
Reference in New Issue
Block a user