mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 17:29:31 +08:00
14 lines
354 B
Text
14 lines
354 B
Text
export = sameParent;
|
|
/** @typedef {import('postcss').AnyNode & {parent?: Child}} Child */
|
|
/**
|
|
* @param {Child} nodeA
|
|
* @param {Child} nodeB
|
|
* @return {boolean}
|
|
*/
|
|
declare function sameParent(nodeA: Child, nodeB: Child): boolean;
|
|
declare namespace sameParent {
|
|
export { Child };
|
|
}
|
|
type Child = import('postcss').AnyNode & {
|
|
parent?: Child;
|
|
};
|